home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 037a / power305.zip / WINSTALL.BAT < prev   
DOS Batch File  |  1993-03-15  |  960b  |  44 lines

  1. @echo off
  2.  
  3. rem (c) Copyright 1992
  4. rem Colorado Memory Systems inc.,
  5. rem All Rights Reserved.
  6.  
  7. rem *** Run the Install software ***
  8. install.exe %3 %4 F
  9.  
  10. rem *** Check the exit code on the install. If success the exit code = 0;
  11. rem *** otherwise the exit code is some number greater than 0;
  12. rem *** if the error code is greater that 0 create a file called
  13. rem *** 'error.out' with the number 1 in it.
  14.  
  15. if not errorlevel 1 goto exit
  16.  
  17. rem *** The following is for install.exe to tell windows to print the
  18. rem *** ASPI reboot message instead of the restart windows msg.
  19. rem *** Note that the installation for this errorlevel was successful
  20.  
  21. if errorlevel 2 goto aspi_reboot
  22.  
  23. rem *** Change Drive to the install drive ***
  24. %1:
  25.  
  26. rem *** Change Directory to the install directory ***
  27. cd %2
  28.  
  29. rem  write 1 in error.out
  30. echo 1 > error.out
  31.  
  32. goto exit
  33.  
  34. :aspi_reboot
  35.  
  36. rem  write 2 in error.out
  37. echo 2 > error.out
  38.  
  39. :exit
  40. @echo on
  41.  
  42.  
  43.  
  44.